From: Katsumi Yamaoka Date: Mon, 30 Aug 2010 06:28:53 +0000 (+0000) Subject: smiley-regexp-alist: Don't delete the semicolon before the blinking smiley by Miles... X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~6830 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=56f5f02361e5fb45e61a8bc83272381622f94104;p=emacs.git smiley-regexp-alist: Don't delete the semicolon before the blinking smiley by Miles Bader ; Disallow ;;) from being treated as a blink smiley by Simon Josefsson . 2009-03-24 Miles Bader * smiley.el (smiley-regexp-alist): Don't delete the semicolon before the blinking smiley. 2009-03-24 Simon Josefsson * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a blink smiley. --- diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index dc282e881a2..0d3f7f2edd4 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,13 @@ +2009-03-24 Miles Bader + + * smiley.el (smiley-regexp-alist): Don't delete the semicolon before + the blinking smiley. + +2009-03-24 Simon Josefsson + + * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a + blink smiley. + 2010-08-29 Lars Magne Ingebrigtsen * gnus-start.el (gnus-dribble-read-file): Ensure that the directory diff --git a/lisp/gnus/smiley.el b/lisp/gnus/smiley.el index fbe71e7725f..ef0a6c7790b 100644 --- a/lisp/gnus/smiley.el +++ b/lisp/gnus/smiley.el @@ -102,7 +102,8 @@ is nil, use `smiley-style'." ;; The XEmacs version has a baroque, if not rococo, set of these. (defcustom smiley-regexp-alist - '(("\\(;-?)\\)\\W" 1 "blink") + '(("\\(;-)\\)\\W" 1 "blink") + ("[^;]\\(;)\\)\\W" 1 "blink") ("\\(:-]\\)\\W" 1 "forced") ("\\(8-)\\)\\W" 1 "braindamaged") ("\\(:-|\\)\\W" 1 "indifferent")